home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monkey Grafik & Sound
/
MonkeyAudio 06-1994.iso
/
grafik
/
dfcdemo
/
unpack.bat
< prev
Wrap
DOS Batch File
|
1994-05-26
|
855b
|
32 lines
@ECHO OFF
break on
ECHO *********************************************
ECHO Bitte wählen Sie eine der folgenden Optionen:
ECHO ---------------------------------------------
ECHO "1" entpacken auf Festplatte C:\DFCDEMO
ECHO ---------------------------------------------
ECHO "2" entpacken auf Festplatte D:\DFCDEMO
ECHO ---------------------------------------------
ECHO "3" entpacken auf Festplatte E:\DFCDEMO
ECHO ---------------------------------------------
ECHO Mit STRG-C brechen Sie ab
ECHO *********************************************
Choice /N /C:123
IF Errorlevel 3 goto inste
If Errorlevel 2 goto instd
If Errorlevel 1 goto instc
:inste
md e:\dfcdemo
pkunzip -d *.zip e:\dfcdemo
goto ende
:instd
md d:\dfcdemo
pkunzip -d *.zip d:\dfcdemo
goto ende
:instc
md c:\dfcdemo
pkunzip -d *.zip c:\dfcdemo
goto ende
:ende